2
תגובות
החלפת אזכור מסוים במסד
פתח
mmm
,
כיצד ניתן להחליף כל אזכור של מילה מסוימת במסד, במילה אחרת, מבלי לדעת באיזו שורה או טור האזכור נמצא?
2 תשובות
update tbl set
column1 = replace(column1, 'word1', 'word2'),
column2 = replace(column2, 'word1', 'word2'),
columnN = replace(columnN, 'word1', 'word2')
column1 = replace(column1, 'word1', 'word2'),
column2 = replace(column2, 'word1', 'word2'),
columnN = replace(columnN, 'word1', 'word2')